summaryrefslogtreecommitdiffstats
path: root/src/org/uic/ticket/api/asn/omv2/SequenceOfCustomerStatusType.java
blob: 81bdf82daa358946c61ca377839224ffd9b96839 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
package org.uic.ticket.api.asn.omv2;

import java.util.Collection;

import net.gcdc.asn1.datatypes.Asn1SequenceOf;

public class SequenceOfCustomerStatusType extends Asn1SequenceOf<CustomerStatusType> {
    public SequenceOfCustomerStatusType() { super(); }
    public SequenceOfCustomerStatusType(Collection<CustomerStatusType> coll) { super(coll); }
}